body{
    margin-top: 40px;
}

/* Animation classes */

[data-animate] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  [data-animate="fade-up"] {
    transform: translateY(30px);
  }
  
  [data-animate="fade-left"] {
    transform: translateX(-30px);
  }
  
  [data-animate="fade-right"] {
    transform: translateX(30px);
  }
  
  [data-animate].animated {
    opacity: 1;
    transform: translate(0);
  }
  
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }





/* CSS for icon */
/* Font Awesome Icon Styling */
.footer-icon {
    color: #d4af37; 
    width: 20px;
    text-align: center;
    margin-right: 12px;
    font-size: 1.1rem;
  }
  
  /* Social Icons */
  .social-links a i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }
  
  .social-links a:hover i {
    transform: translateY(-2px);
    color: #d4af37;
  }








.hero-classic {
    padding: 5rem 2rem;
    background: #f9f5f0; /* Soft warm white */
    font-family: 'Playfair Display', serif; /* Classic serif */
  }
  
  .classic-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
  }
  
  .classic-text {
    flex: 1;
    padding-left: 2rem;
  }
  
  .classic-text h1 {
    font-size: 3rem;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: -0.5px;
  }
  
  .classic-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 90%;
  }
  
  .classic-button {
    display: inline-block;
    background: transparent;
    color: #7a6a5f; /* Muted taupe */
    padding: 12px 30px;
    border: 1px solid #7a6a5f;
    border-radius: 0; /* Sharp edges for classic look */
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  
  .classic-button:hover {
    background: #7a6a5f;
    color: #fff;
  }
  
  .classic-image {
    flex: 1;
  }
  
  .classic-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 8px solid #fff; /* Mat border effect */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .classic-container {
      flex-direction: column;
      gap: 2rem;
    }
    .classic-text {
      padding-left: 0;
      text-align: center;
    }
    .classic-text p {
      max-width: 100%;
    }
    .classic-image img {
      height: 350px;
    }
  }


  /* Sessional Collection */
  /* Seasonal Collection */
.seasonal-section {
    padding: 6rem 2rem;
    background: #faf9f7;
    position: relative;
  }
  
  .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
  }
  
  .collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .collection-item {
    background: white;
    border: 1px solid #f0eae1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  }
  
  .collection-image {
    position: relative;
    height: 350px;
    overflow: hidden;
  }
  
  .collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
  }
  
  .collection-item:hover .collection-image img {
    transform: scale(1.03);
  }
  
  .collection-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d4af37;
    color: white;
    padding: 0.3rem 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  
  .collection-details {
    padding: 1.8rem;
  }
  
  .collection-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
  }
  
  .collection-description {
    font-family: 'Cormorant Garamond', serif;
    color: #7a6a5f;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
  }
  
  .collection-price {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .collection-button {
    display: inline-block;
    border: 1px solid #e8e2d6;
    color: #7a6a5f;
    padding: 0.6rem 1.8rem;
    font-family: 'Cormorant Garamond', serif;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .collection-button:hover {
    background: #f8f5f0;
    border-color: #d4af37;
  }
  
  .section-footer {
    text-align: center;
    margin-top: 4rem;
  }
  
  .view-all-button {
    font-family: 'Cormorant Garamond', serif;
    color: #7a6a5f;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: 1px solid #d4af37;
    padding-bottom: 3px;
    transition: all 0.3s ease;
  }
  
  .view-all-button:hover {
    color: #d4af37;
    letter-spacing: 1.2px;
  }




















/* purpose section  */
.purpose-section {
    padding: 5rem 2rem;
    background: #fff; /* Crisp white for contrast */
    border-top: 1px solid #f0e6e0; /* Delicate separator */
  }
  
  /* Reuse .classic-container from previous section */
  
  .purpose-image {
    flex: 1;
  }
  
  .purpose-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 8px solid #f9f5f0; /* Mat border matching hero bg */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .purpose-text {
    flex: 1;
    padding-right: 2rem;
  }
  
  .section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: #7a6a5f;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  
  .purpose-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  
  .purpose-list {
    list-style: none;
    padding-left: 0;
  }
  
  .purpose-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #444;
    font-size: 1.05rem;
  }
  
  .purpose-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #7a6a5f;
    font-size: 1.5rem;
    line-height: 1;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .purpose-text {
      padding-right: 0;
      padding-top: 2rem;
    }
    .purpose-image img {
      height: 350px;
    }
  }











  /*  service part*/
  .services-section {
    padding: 6rem 2rem;
    background: #f9f5f0; /* Matching hero background */
    text-align: center;
  }
  
  .section-header {
    max-width: 600px;
    margin: 0 auto 4rem;
  }
  
  .section-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #7a6a5f;
    margin-top: 1rem;
  }
  
  .services-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    flex: 1;
    padding: 2.5rem 2rem;
    background: #fff;
    border: 1px solid #f0e6e0;
    max-width: 320px;
    transition: all 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .service-icon {
    margin-bottom: 1.8rem;
  }
  
  .service-icon img {
    filter: sepia(30%) opacity(90%); /* Vintage icon treatment */
  }
  
  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #3a3a3a;
    margin-bottom: 1.2rem;
    font-weight: 400;
  }
  
  .service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 900px) {
    .services-grid {
      flex-wrap: wrap;
    }
    .service-card {
      min-width: 280px;
    }
  }
  
  @media (max-width: 600px) {
    .service-card {
      min-width: 100%;
    }
  }

















  /* Showcase section  */
  .metrics-section {
    padding: 5rem 2rem;

    text-align: center;
  }
  
  /* Row 1: Heading */
  .metrics-header {
    max-width: 600px;
    margin: 0 auto 4rem;
  }
  
  .section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: #7a6a5f;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  
  .metrics-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #3a3a3a;
    font-weight: 400;
    margin-bottom: 0.5rem;
  }
  
  .section-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #7a6a5f;
  }
  
  /* Row 2: Metrics Grid */
  .metrics-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .metric-card {
    min-width: 160px;
    padding: 1.5rem;
  }
  
  .metric-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #7a6a5f;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 400;
  }
  
  .metric-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #666;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .metrics-grid {
      gap: 1.5rem;
    }
    .metric-card {
      min-width: 120px;
      padding: 1rem;
    }
    .metric-number {
      font-size: 2.2rem;
    }
  }
  
  @media (max-width: 480px) {
    .metrics-grid {
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
  }



















  /* Feedback section  */

.luxury-feedback {
    padding: 7rem 2rem;
    background: #fff;
    position: relative;
  }
  
  /* Gold Accent Bar */
  .luxury-feedback::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #d4af37; /* Gold */
  }
  
  /* Header */
  .feedback-luxury-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .elegant-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #2a2a2a;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
  }
  
  .luxury-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #7a6a5f;
    letter-spacing: 1px;
  }
  
  /* Carousel Container */
  .feedback-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .carousel-arrow {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #d4af37;
    cursor: pointer;
    padding: 0 1.5rem;
    z-index: 10;
    transition: opacity 0.3s;
  }
  
  .carousel-arrow:hover {
    opacity: 0.8;
  }
  
  /* Testimonial Cards */
  .feedback-carousel-track {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  
  .feedback-carousel-track::-webkit-scrollbar {
    display: none;
  }
  
  .luxury-testimonial {
    min-width: 435px;
    max-width: 500px;
    scroll-snap-align: start;
    padding: 2.5rem;
    background: #f9f7f3;
    border: 1px solid #e8e2d6;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  /* Client Info */
  .client-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.8rem;
  }
  
  .client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #d4af37;
    padding: 3px;
  }
  
  .client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .client-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2a2a2a;
    margin-bottom: 0.3rem;
  }
  
  .testimonial-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: #7a6a5f;
    margin-bottom: 0.5rem;
  }
  
  .rating-stars {
    color: #d4af37;
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
  
  /* Testimonial Quote */
  .testimonial-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
  }
  
  .testimonial-quote p::before {
    content: "“";
    font-size: 4rem;
    font-family: serif;
    color: #d4af37;
    opacity: 0.3;
    position: absolute;
    left: -1rem;
    top: -1.5rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .luxury-testimonial {
      min-width: 85vw;
      padding: 2rem;
    }
    .carousel-arrow {
      display: none;
    }
  }











  /* Contact us  */
  .contact-section {
    padding: 4rem 2rem;
    background: #fff;
  }
  
  .contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
  }
  
  /* Form Column */
  .contact-form {
    flex: 1;
    padding-right: 2rem;
  }
  
  .contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
    font-weight: 400;
  }
  
  .subtitle {
    font-family: 'Cormorant Garamond', serif;
    color: #7a6a5f;
    margin-bottom: 2rem;
    display: block;
    font-size: 1.1rem;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }
  
  .input-group {
    position: relative;
  }
  
  .input-group input,
  .input-group textarea {
    width: 100%;
    padding: 0.8rem 0;
    border: none;
    border-bottom: 1px solid #e0d6c5;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    background: transparent;
    transition: all 0.3s;
  }
  
  .input-group textarea {
    resize: none;
  }
  
  .input-group label {
    position: absolute;
    top: 0.8rem;
    left: 0;
    font-family: 'Cormorant Garamond', serif;
    color: #7a6a5f;
    transition: all 0.3s;
    pointer-events: none;
  }
  
  .input-group input:focus,
  .input-group textarea:focus {
    outline: none;
    border-bottom-color: transparent;
  }
  
  .input-group input:focus + label,
  .input-group textarea:focus + label,
  .input-group input:not(:placeholder-shown) + label,
  .input-group textarea:not(:placeholder-shown) + label {
    top: -0.8rem;
    font-size: 0.9rem;
    color: #b3a089;
  }
  
  .line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #b3a089;
    transition: width 0.4s;
  }
  
  .input-group input:focus ~ .line,
  .input-group textarea:focus ~ .line {
    width: 100%;
  }
  
  button[type="submit"] {
    align-self: flex-start;
    background: transparent;
    color: #7a6a5f;
    border: 1px solid #e0d6c5;
    padding: 0.8rem 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    transition: all 0.3s;
  }
  
  button[type="submit"] svg {
    stroke: #7a6a5f;
    transition: transform 0.3s;
  }
  
  button[type="submit"]:hover {
    background: #7a6a5f;
    color: white;
    border-color: #b3a089;
  }
  
  button[type="submit"]:hover svg {
    transform: translateX(3px);
    stroke: white;
  }
  
  /* Image Column */
  .contact-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  
  .contact-image:hover img {
    transform: scale(1.02);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
    .contact-form {
      padding-right: 0;
    }
    .contact-image {
      height: 300px;
      width: 100%;
    }
  }